home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 November
/
Macworld (1999-11).dmg
/
Updaters
/
WhiteCap 3.0.4
/
WhiteCap Source.sit
/
WhiteCap Source
/
Common
/
math
/
Headers
/
Camera.h
next >
Wrap
Text File
|
1999-07-23
|
374b
|
26 lines
#pragma once
#include "V3.h"
class Camera {
public:
V3 mDir; // The direction we're looking
V3 mUpDir; // What direction is up
V3 mPos; // Where we are in space
float mXYScale; // Scales all the XY cords in he cam cord system
float mPersZ; // The dist added to the cam's z
void CalcTransMatrix( R3Matrix& outT ) const;
};